runtime.p.runSafePointFn (field)

12 uses

	runtime (current package)
		proc.go#L1590: 			atomic.Store(&p.runSafePointFn, 1)
		proc.go#L1602: 		if atomic.Cas(&p.runSafePointFn, 1, 0) {
		proc.go#L1618: 		if s == _Psyscall && p.runSafePointFn == 1 && atomic.Cas(&p.status, s, _Pidle) {
		proc.go#L1646: 		if p.runSafePointFn != 0 {
		proc.go#L1673: 	if !atomic.Cas(&p.runSafePointFn, 1, 0) {
		proc.go#L2363: 	if _p_.runSafePointFn != 0 && atomic.Cas(&_p_.runSafePointFn, 1, 0) {
		proc.go#L2538: 	if _p_.runSafePointFn != 0 {
		proc.go#L2662: 	if sched.gcwaiting != 0 || _p_.runSafePointFn != 0 {
		proc.go#L3137: 	if pp.runSafePointFn != 0 {
		proc.go#L3624: 	if _g_.m.p.ptr().runSafePointFn != 0 {
		runtime2.go#L703: 	runSafePointFn uint32 // if 1, run sched.safePointFn at next safe point